home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************************
- AutoColor.h
-
- Copyright © 1999 Red Shed Software. All rights reserved.
- by Jonathan 'Wolf' Rentzsch (jon@redshed.net)
-
- Commenter Date Comment
- --------- ----------------- -----------------------------------------------------
- wolf Thu, Jun 24, 1999 Created.
-
- ************************************************************************************/
-
- #ifndef _AutoColor_
- #define _AutoColor_
-
- class AutoColor {
- public:
- AutoColor(
- RGBColor newColor )
- { GetForeColor( &oldColor_ );
- RGBForeColor( newColor ); }
-
- ~AutoColor()
- { RGBForeColor( oldColor_ ); }
- private:
- RGBColor oldColor_;
- };
-
- #endif // _AutoColor_